:root {
    --accent: #ae8d2a;
    --accent-hover: #D0A933;
    --bg-dark: #181818;
    --bg-footer: #222;
    --text-main: #222;
    --text-light: #fff;
    --text-muted: #aaa;
    --footer-link: #fff;
    --footer-link-hover: #D0A933;
    --footer-title: #fff;
    --footer-bg: #181818;
    --footer-border: #333;
    --footer-important-bg: #3a2e00;
    --footer-important-text: #ffd700;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
    color: var(--text-main);
    background: #fff;
    box-sizing: border-box;
}

.container {
    /* width: 100%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo img {
    height: 48px;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.header__nav-link:hover {
    color: var(--accent);
}

.header__nav-link.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.header__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    margin-left: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header__btn:hover,
.header__btn:focus {
    background: var(--accent-hover);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    margin-left: 16px;
    position: relative;
    z-index: 210;
}

.header__burger span {
    display: block;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header__mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 200;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 0 0 0;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.header__mobile-menu.active {
    display: flex;
}

.header__mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 24, 0.45);
    z-index: 150;
}

.header__mobile-overlay.active {
    display: block;
}


.header__mobile-logo {
    height: 48px;
}

.header__mobile-close {
    display: none;
}

.header__mobile-list {
    list-style: none;
    padding: 0 0 0 24px;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.header__btn--mobile {
    margin: 0 24px 24px 24px;
    width: calc(100% - 48px);
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {

    .header__nav,
    .header__btn {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__mobile-menu {
        display: none;
    }

    .header__mobile-menu.active {
        display: flex;
    }

    .header__mobile-close {
        display: none !important;
    }
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    overflow: hidden;
}



.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 100px 20px 80px 20px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
}

.hero__subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 32px 0;
    line-height: 1.4;
}

.hero__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero__btn:hover,
.hero__btn:focus {
    background: var(--accent-hover);
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-link);
    padding-top: 48px;
    font-size: 1rem;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid var(--footer-border);
    padding-bottom: 32px;
}

.footer__col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer__logo {
    height: 48px;
    margin-bottom: 18px;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
}

.footer__desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.footer__title {
    color: var(--footer-title);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__col ul li {
    margin-bottom: 8px;
}

.footer__col ul li a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__col ul li a:hover {
    color: var(--footer-link-hover);
}

.footer__middle {
    text-align: center;
    margin: 32px 0 0 0;
}

.footer__subtitle {
    color: var(--footer-title);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer__rg-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer__rg-logos img {
    height: 48px;
    border-radius: 8px;
    padding: 4px 12px;
}

.footer__important {
    background: var(--footer-important-bg);
    color: var(--footer-important-text);
    padding: 18px 24px;
    margin: 32px auto 0 auto;
    border-radius: 10px;
    max-width: 900px;
    font-size: 1.05rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-bottom: 24px;
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
}

.footer__socials {
    display: flex;
    gap: 18px;
}

.footer__socials a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer__socials a:hover {
    opacity: 1;
    color: var(--accent);
}

@media (max-width: 900px) {
    .footer__top {
        flex-direction: column;
        gap: 24px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }

    .hero__title {
        font-size: 2.1rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .footer__rg-logos img {
        height: 32px;
        padding: 2px 6px;
    }

    .header__mobile-top {
        padding: 0 10px 18px 10px;
    }

    .header__mobile-list {
        padding-left: 10px;
    }

    .header__btn--mobile {
        margin: 0 10px 18px 10px;
        width: calc(100% - 20px);
    }
}

/* Block 2: Why Choose */
.why-choose {
    background: #f8fafb;
    padding: 64px 0 64px 0;
}

.why-choose__title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.why-choose__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.why-choose__cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-choose__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 32px 28px 28px 28px;
    flex: 1 1 300px;
    max-width: 350px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.why-choose__icon {
    background: #e0f3f3;
    color: var(--accent);
    font-size: 2.2rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-choose__card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.why-choose__card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

.why-choose__list {
    padding-left: 0;
    margin: 0;
    list-style: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
}

.why-choose__link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.2s;
    display: inline-block;
}

.why-choose__link:hover {
    color: var(--accent-hover);
}

@media (max-width: 900px) {
    .why-choose__cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .why-choose__card {
        max-width: 100%;
    }
}

/* Block 3: Signature Experiences */
.signature-experiences {
    background: #fff;
    padding: 64px 0 64px 0;
}

.signature-experiences__title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.signature-experiences__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.signature-experiences__cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.signature-experiences__card {
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    margin-bottom: 16px;
}

.signature-experiences__icon {
    background: #e0f3f3;
    color: var(--accent);
    font-size: 2.2rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
}

.signature-experiences__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.signature-experiences__card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .signature-experiences__cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .signature-experiences__card {
        max-width: 100%;
    }
}

/* Block 4: Guest Reviews */
.guest-reviews {
    background: #f8fafb;
    padding: 64px 0 64px 0;
}

.guest-reviews__title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.guest-reviews__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.guest-reviews__cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.guest-reviews__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 32px 28px 28px 28px;
    flex: 1 1 300px;
    max-width: 350px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.guest-reviews__stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.guest-reviews__card blockquote {
    font-size: 1.05rem;
    color: #333;
    margin: 0 0 16px 0;
    font-style: italic;
}

.guest-reviews__author {
    font-weight: 700;
    color: #222;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .guest-reviews__cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .guest-reviews__card {
        max-width: 100%;
    }
}

/* Block 5: CTA */
.cta-block {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 64px 0 64px 0;
}

.cta-block__title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-block__desc {
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.cta-block__btn {
    background: #fff;
    color: var(--accent);
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.cta-block__btn:hover,
.cta-block__btn:focus {
    background: var(--accent-hover);
    color: #fff;
}

/* ROOMS HERO */
.rooms-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    overflow: hidden;
}



.rooms-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 20px 60px 20px;
}

.rooms-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
}

.rooms-hero__subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* ROOMS LIST */
.rooms-list {
    background: #fff;
    padding: 64px 0 64px 0;
}

.rooms-list__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.rooms-list__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.rooms-list__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-content: center;
}

.rooms-list__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 240px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.rooms-list__card:hover {
    box-shadow: 0 6px 24px rgba(0, 128, 128, 0.13);
}

.rooms-list__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
}

.rooms-list__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rooms-list__name {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 18px 0 8px 0;
    padding: 0 24px;
}

.rooms-list__text {
    font-size: 1rem;
    color: #444;
    margin: 0 0 10px 0;
    padding: 0 24px;
}

.rooms-list__features {
    padding-left: 24px;
    margin: 0 0 16px 0;
    list-style: disc inside;
    color: var(--accent);
    font-size: 1rem;
}

.rooms-list__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    margin: 0 24px;
    width: calc(100% - 48px);
    text-align: center;
    display: block;
}

.rooms-list__btn:hover,
.rooms-list__btn:focus {
    background: var(--accent-hover);
}

@media (max-width: 900px) {
    .rooms-list__cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ROOMS AMENITIES */
.rooms-amenities {
    background: #f8fafb;
    padding: 64px 0 64px 0;
}

.rooms-amenities__wrap {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 48px 32px 40px 32px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.rooms-amenities__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.rooms-amenities__desc {
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.rooms-amenities__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 32px;
    text-align: left;
    margin: 0 0 32px 0;
    padding: 0;
    list-style: disc inside;
    color: var(--accent);
    font-size: 1.05rem;
}

.rooms-amenities__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.rooms-amenities__btn:hover,
.rooms-amenities__btn:focus {
    background: var(--accent-hover);
}

@media (max-width: 900px) {
    .rooms-amenities__wrap {
        padding: 32px 10px 28px 10px;
    }

    .rooms-amenities__list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .rooms-hero__title {
        font-size: 2rem;
    }

    .rooms-amenities__list {
        grid-template-columns: 1fr;
    }
}

/* CASINO HERO */
.casino-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    overflow: hidden;
}



.casino-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 20px 60px 20px;
}

.casino-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
}

.casino-hero__subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* CASINO WELCOME */
.casino-welcome {
    background: #fff;
    padding: 48px 0 32px 0;
}

.casino-welcome__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.casino-welcome__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CASINO CARD TABLES */
.casino-cardtables {
    background: #f8fafb;
    padding: 48px 0 48px 0;
}

.casino-cardtables__wrap {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 40px 32px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.casino-cardtables__info {
    flex: 1 1 340px;
}

.casino-cardtables__info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.casino-cardtables__info p {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 18px;
}

.casino-cardtables__info ul {
    padding-left: 0;
    margin: 0;
    list-style: disc inside;
    color: var(--accent);
    font-size: 1.05rem;
}

.casino-cardtables__img-wrap {
    flex: 1 1 340px;
    min-width: 260px;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.casino-cardtables__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .casino-cardtables__wrap {
        flex-direction: column;
        gap: 24px;
        padding: 24px 10px;
    }

    .casino-cardtables__img-wrap {
        max-width: 100%;
        min-width: 0;
    }
}

/* CASINO HOURS */
.casino-hours {
    background: #fff;
    padding: 48px 0 48px 0;
}

.casino-hours__wrap {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.casino-hours__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.casino-hours__desc {
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.casino-hours__table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin: 0 auto;
    max-width: 500px;
}

.casino-hours__thead {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 18px 0;
    text-align: center;
}

.casino-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    font-size: 1.08rem;
    background: #fff;
}

.casino-hours__row:last-child {
    border-bottom: none;
}

/* CASINO GAMES */
.casino-games {
    background: #fff;
    padding: 64px 0 64px 0;
}

.casino-games__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.casino-games__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.casino-games__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-content: center;
}

.casino-games__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.casino-games__card:hover {
    box-shadow: 0 6px 24px rgba(0, 128, 128, 0.13);
}

.casino-games__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
}

.casino-games__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.casino-games__name {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 18px 0 8px 0;
    padding: 0 18px;
}

.casino-games__text {
    font-size: 1rem;
    color: #444;
    margin: 0 0 10px 0;
    padding: 0 18px;
}

@media (max-width: 1200px) {
    .casino-games__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .casino-games__cards {
        grid-template-columns: 1fr;
    }
}

/* CASINO RESPONSIBLE GAMING */
.casino-responsible {

    padding: 48px 0 48px 0;
}

.casino-responsible__wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 10px;
    padding: 32px 24px 32px 24px;
    text-align: center;
}

.casino-responsible__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.casino-responsible__desc {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.casino-responsible__btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
}

.casino-responsible__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.casino-responsible__btn--yellow {
    background: #d49c0f;
    color: #fff;
}

.casino-responsible__btn:hover,
.casino-responsible__btn:focus {
    background: var(--accent-hover);
}

.casino-responsible__btn--yellow:hover,
.casino-responsible__btn--yellow:focus {
    background: #b8860b;
}

@media (max-width: 900px) {
    .casino-cardtables__wrap {
        flex-direction: column;
        gap: 24px;
        padding: 24px 10px;
    }

    .casino-cardtables__img-wrap {
        max-width: 100%;
        min-width: 0;
    }

    .casino-games__cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .casino-hero__title {
        font-size: 2rem;
    }

    .casino-games__cards {
        grid-template-columns: 1fr;
    }

    .casino-responsible__wrap {
        padding: 18px 6px 18px 6px;
    }
}

/* RESTAURANT HERO */
.restaurant-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    overflow: hidden;
}



.restaurant-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 20px 60px 20px;
}

.restaurant-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
}

.restaurant-hero__subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* RESTAURANT CULINARY */
.restaurant-culinary {
    background: #fff;
    padding: 48px 0 32px 0;
}

.restaurant-culinary__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.restaurant-culinary__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* RESTAURANT SPECIALTIES */
.restaurant-specialties {
    background: #f8fafb;
    padding: 48px 0 48px 0;
}

.restaurant-specialties__wrap {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 40px 32px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.restaurant-specialties__info {
    flex: 1 1 340px;
}

.restaurant-specialties__info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.restaurant-specialties__info p {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 18px;
}

.restaurant-specialties__info ul {
    padding-left: 0;
    margin: 0 0 18px 0;
    list-style: disc inside;
    color: var(--accent);
    font-size: 1.05rem;
}

.restaurant-specialties__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.restaurant-specialties__btn:hover,
.restaurant-specialties__btn:focus {
    background: var(--accent-hover);
}

.restaurant-specialties__img-wrap {
    flex: 1 1 340px;
    min-width: 260px;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.restaurant-specialties__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .restaurant-specialties__wrap {
        flex-direction: column;
        gap: 24px;
        padding: 24px 10px;
    }

    .restaurant-specialties__img-wrap {
        max-width: 100%;
        min-width: 0;
    }
}

/* RESTAURANT MENU */
.restaurant-menu {
    background: #fff;
    padding: 64px 0 64px 0;
}

.restaurant-menu__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.restaurant-menu__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.restaurant-menu__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-content: center;
}

.restaurant-menu__col {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.restaurant-menu__col-head {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 0;
}

.restaurant-menu__col ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.restaurant-menu__col li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    font-size: 1.08rem;
    background: #fff;
}

.restaurant-menu__col li:last-child {
    border-bottom: none;
}

.restaurant-menu__col li span:last-child {
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 900px) {
    .restaurant-menu__columns {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* RESTAURANT WINE LIST */
.restaurant-wine {
    background: #f8fafb;
    padding: 64px 0 64px 0;
}

.restaurant-wine__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.restaurant-wine__desc {
    text-align: center;
    color: #4a5a6a;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.restaurant-wine__list {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.restaurant-wine__item {
    text-align: center;
    max-width: 220px;
}

.restaurant-wine__icon {
    background: #e0f3f3;
    color: var(--accent);
    font-size: 2.2rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
}

.restaurant-wine__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.restaurant-wine__desc2 {
    color: #444;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .restaurant-wine__list {
        gap: 18px;
    }
}

/* RESTAURANT BOOK A TABLE */
.restaurant-book {
    color: #fff;
    padding: 64px 0 64px 0;
}

.restaurant-book__wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--accent);
    border-radius: 14px;
    padding: 48px 32px 40px 32px;
    text-align: center;
}

.restaurant-book__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.restaurant-book__desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.restaurant-book__btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

.restaurant-book__btn {
    background: #fff;
    color: var(--accent);
    border: none;
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.restaurant-book__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.restaurant-book__btn:hover,
.restaurant-book__btn:focus {
    background: var(--accent-hover);
    color: #fff;
}

.restaurant-book__btn--outline:hover,
.restaurant-book__btn--outline:focus {
    background: #fff;
    color: var(--accent);
}

@media (max-width: 900px) {
    .restaurant-book__wrap {
        padding: 32px 10px 28px 10px;
    }
}

@media (max-width: 600px) {
    .restaurant-hero__title {
        font-size: 2rem;
    }

    .restaurant-book__wrap {
        padding: 18px 6px 18px 6px;
    }
}

/* --- WELLNESS PAGE --- */
.wellness-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin-bottom: 0;
}



.wellness-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 0 60px 0;
}

.wellness-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.wellness-hero__subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.wellness-intro {
    padding: 56px 0 0 0;
    text-align: center;
}

.wellness-intro__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.wellness-intro__desc {
    font-size: 1.15rem;
    color: #495057;
    max-width: 900px;
    margin: 0 auto;
}

.wellness-facilities {
    padding: 64px 0 0 0;
    text-align: center;
}

.wellness-facilities__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.wellness-facilities__desc {
    color: #495057;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.wellness-facilities__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.wellness-facilities__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.07);
    width: 270px;
    padding-bottom: 18px;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wellness-facilities__card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    margin-bottom: 18px;
}

.wellness-facilities__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.wellness-facilities__card p {
    color: #495057;
    font-size: 1rem;
}

.wellness-facilities__card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 120, 130, 0.13);
}

.wellness-treatments {
    padding: 72px 0 0 0;
    text-align: center;
}

.wellness-treatments__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.wellness-treatments__desc {
    color: #495057;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.wellness-treatments__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.wellness-treatments__item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.07);
    width: 420px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 36px;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}

.wellness-treatments__item:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 120, 130, 0.13);
}

.wellness-treatments__info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: left;
}

.wellness-treatments__info p {
    color: #495057;
    font-size: 1rem;
    text-align: left;
}

.wellness-treatments__price {
    text-align: right;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.wellness-treatments__price small {
    color: #495057;
    font-size: 0.95rem;
    font-weight: 400;
}

.wellness-info {
    padding: 64px 0 0 0;
}

.wellness-info__container {
    display: flex;
    gap: 48px;
    background: #fafbfc;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.04);
    padding: 48px 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wellness-info__hours {
    flex: 1 1 340px;
    min-width: 300px;
}

.wellness-info__hours h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.wellness-info__hours-table {
    margin-bottom: 24px;
}

.wellness-info__hours-table div {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 6px 0;
    border-bottom: 1px solid #e3e7ea;
}

.wellness-info__hours-table div:last-child {
    border-bottom: none;
}

.wellness-info__hours-table span:last-child {
    color: var(--accent);
    font-weight: 700;
}

.wellness-info__hours h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 24px 0 10px 0;
}

.wellness-info__list {
    list-style: disc inside;
    color: var(--accent);
    margin-left: 0;
    padding-left: 0;
}

.wellness-info__list li {
    color: #495057;
    font-size: 1rem;
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.wellness-info__list li:before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.wellness-info__packages {
    flex: 1 1 340px;
    min-width: 300px;
}

.wellness-info__packages h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.wellness-info__package {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0, 120, 130, 0.07);
    padding: 22px 28px 18px 28px;
    margin-bottom: 18px;
    text-align: left;
    transition: box-shadow 0.2s;
}

.wellness-info__package h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.wellness-info__package p {
    color: #495057;
    font-size: 1rem;
    margin-bottom: 6px;
}

.wellness-info__package span {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.wellness-info__package:last-child {
    margin-bottom: 0;
}

.wellness-cta {
    padding: 56px 0 0 0;
}

.wellness-cta__container {
    background: var(--accent);
    border-radius: 12px;
    padding: 48px 24px 40px 24px;
    text-align: center;
    color: #fff;
    max-width: 96vw;
    margin: 0 auto;
}

.wellness-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.wellness-cta__desc {
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.wellness-cta__actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.wellness-cta__btn {
    background: #fff;
    color: var(--accent);
    border: none;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.07);
}

.wellness-cta__btn:hover {
    background: #e3e7ea;
    color: var(--accent);
}

.wellness-cta__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}

.wellness-cta__btn--outline:hover {
    background: #fff;
    color: var(--accent);
}

/* --- ADAPTIVE --- */
@media (max-width: 1200px) {

    .wellness-facilities__cards,
    .wellness-treatments__grid {
        gap: 18px;
    }

    .wellness-treatments__item,
    .wellness-facilities__card {
        width: 100%;
        max-width: 420px;
    }

    .wellness-info__container {
        flex-direction: column;
        gap: 32px;
        padding: 32px 12px;
    }
}

@media (max-width: 900px) {
    .wellness-hero__content {
        padding: 40px 0 32px 0;
    }

    .wellness-treatments__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 24px 16px;
    }

    .wellness-facilities__cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .wellness-hero__title {
        font-size: 2rem;
    }

    .wellness-hero__subtitle {
        font-size: 1rem;
    }

    .wellness-intro__title,
    .wellness-facilities__title,
    .wellness-treatments__title,
    .wellness-cta__title {
        font-size: 1.3rem;
    }

    .wellness-treatments__item,
    .wellness-facilities__card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 16px 8px;
    }

    .wellness-info__container {
        padding: 16px 2px;
    }

    .wellness-cta__container {
        padding: 24px 4px 24px 4px;
    }

    .wellness-cta__actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- EVENTS PAGE --- */
.events-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin-bottom: 0;
}



.events-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 0 60px 0;
}

.events-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.events-hero__subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.events-planning {
    padding: 64px 0 0 0;
}

.events-planning__container {
    background: var(--accent);
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
}

.events-planning__content {
    flex: 1;
    padding: 48px 48px 48px 64px;
}

.events-planning__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.events-planning__desc {
    font-size: 1.15rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.events-planning__list {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.events-planning__list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 22px;
}

.events-planning__list li:before {
    content: '●';
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.events-planning__btn {
    background: #fff;
    color: var(--accent);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.events-planning__btn:hover {
    background: #f1f3f4;
    transform: translateY(-2px);
}

.events-planning__image {
    flex: 0 0 50%;
    height: 400px;
}

.events-planning__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-types {
    padding: 80px 0 0 0;
    text-align: center;
}

.events-types__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.events-types__desc {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-types__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.events-types__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    padding: 32px 28px;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
}

.events-types__card:hover {
    box-shadow: 0 8px 40px 0 rgba(0, 120, 130, 0.15);
    transform: translateY(-4px);
}

.events-types__card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.events-types__card p {
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.5;
}

.events-types__capacity {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.events-types__card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.events-types__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-types__card li {
    color: #495057;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.events-types__card li:before {
    content: '●';
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
}

.events-upcoming {
    padding: 80px 0 0 0;
    text-align: center;
}

.events-upcoming__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.events-upcoming__desc {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-upcoming__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.events-upcoming__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    padding: 32px 28px;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.events-upcoming__card:hover {
    box-shadow: 0 8px 40px 0 rgba(0, 120, 130, 0.15);
    transform: translateY(-4px);
}

.events-upcoming__date {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.events-upcoming__badge {
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.events-upcoming__card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.events-upcoming__card p {
    color: #495057;
    line-height: 1.5;
    margin-bottom: 24px;
}

.events-upcoming__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.events-upcoming__btn:hover {
    background: #006d72;
    transform: translateY(-2px);
}

.events-contact {
    padding: 64px 0 64px 0;
    text-align: center;
}

.events-contact__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.events-contact__desc {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-contact__actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.events-contact__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.events-contact__btn:hover {
    background: #006d72;
    transform: translateY(-2px);
}

.events-contact__btn--outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.events-contact__btn--outline:hover {
    background: var(--accent);
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .events-planning__container {
        flex-direction: column;
        max-height: none;
    }

    .events-planning__content {
        padding: 40px 32px 24px 32px;
    }

    .events-planning__image {
        flex: none;
        height: 250px;
    }

    .events-types__grid,
    .events-upcoming__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .events-hero__content {
        padding: 40px 0 32px 0;
    }

    .events-hero__title {
        font-size: 2.2rem;
    }

    .events-hero__subtitle {
        font-size: 1.2rem;
    }

    .events-planning__title,
    .events-types__title,
    .events-upcoming__title,
    .events-contact__title {
        font-size: 1.8rem;
    }

    .events-types__grid,
    .events-upcoming__grid {
        grid-template-columns: 1fr;
    }

    .events-contact__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .events-planning__content {
        padding: 32px 20px;
    }

    .events-types__card,
    .events-upcoming__card {
        padding: 24px 20px;
    }

    .events-hero__title {
        font-size: 1.8rem;
    }

    .events-hero__subtitle {
        font-size: 1rem;
    }

    .events-planning__title,
    .events-types__title,
    .events-upcoming__title,
    .events-contact__title {
        font-size: 1.5rem;
    }
}

/* --- CONTACT PAGE --- */


.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-details h2 {
    color: var(--accent);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.contact-info .phone {
    color: var(--accent);
    font-weight: 600;
}

.contact-info .email {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-info .email:hover {
    text-decoration: underline;
}

.hotel-image {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hotel-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: var(--accent);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: #555;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--accent);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #006b70;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Contact Page */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        order: -1;
        padding: 30px 25px;
    }
}

@media (max-width: 600px) {
    .contact-content {
        padding: 60px 0;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-form h2,
    .contact-details h2 {
        font-size: 1.8rem;
    }
}

/* --- LEGAL PAGES --- */
.legal-hero__container,
.legal-content__container {
    max-width: 800px;
    margin-bottom: 20px;
}


/* Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.contact-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero__subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main Contact Section */
.contact-main {
    padding: 80px 0;
    background-color: #fff;
}

.contact-main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-main__title {
    font-size: 2rem;
    color: #2c8577;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Contact Info Section */
.contact-main__info {
    padding-right: 20px;
}

.contact-main__block {
    margin-bottom: 2rem;
}

.contact-main__block h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-main__block p {
    color: #666;
    line-height: 1.8;
}

.contact-main__block a {
    color: #2c8577;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-main__block a:hover {
    color: #1a5f56;
}

.contact-main__image {
    margin-top: 2rem;
}

.contact-main__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-main__image h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form__group {
    margin-bottom: 1.5rem;
}

.contact-form__group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
    outline: none;
    border-color: #2c8577;
    box-shadow: 0 0 0 3px rgba(44, 133, 119, 0.1);
}

.contact-form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__checkbox {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-form__checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-form__checkbox label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-form__checkbox a {
    color: #2c8577;
    text-decoration: none;
}

.contact-form__checkbox a:hover {
    text-decoration: underline;
}

.contact-form__submit {
    background: #2c8577;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form__submit:hover {
    background: #1a5f56;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero__title {
        font-size: 2.5rem;
    }

    .contact-hero__subtitle {
        font-size: 1.1rem;
    }

    .contact-main__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-main {
        padding: 40px 0;
    }

    .contact-hero__bg::before {
        font-size: 80px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 300px;
    }

    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-hero__bg::before {
        font-size: 60px;
    }

}

/* Responsible Gaming Page Styles */

.warning-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff5f5;
    border-left: 5px solid #dc3545;
    padding: 30px 0;
    margin-bottom: 0;
}

.warning-icon {
    flex-shrink: 0;
}

.age-restriction {
    background: #dc3545;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    min-width: 50px;
    text-align: center;
}

.warning-text {
    color: #dc3545;
    font-size: 1.1rem;
    line-height: 1.6;
}

.warning-text strong {
    font-weight: 700;
}

.responsible-gaming-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-block {
    margin-bottom: 50px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-block h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-block h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.guidelines-list,
.warning-signs,
.tools-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.guidelines-list li,
.warning-signs li,
.tools-list li {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent);
    color: #555;
    line-height: 1.6;
    position: relative;
}

.guidelines-list li:before,
.warning-signs li:before,
.tools-list li:before {
    content: "•";
    color: var(--accent);
    font-size: 1.5rem;
    position: absolute;
    left: 8px;
    top: 12px;
}

.warning-signs li {
    border-left-color: #dc3545;
}

.warning-signs li:before {
    color: #dc3545;
}

.warning-intro,
.help-intro,
.tools-intro {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.resource-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent);
}

.resource-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.resource-item p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--accent);
}

.closing-message {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--accent);
}

.closing-message p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.play-responsibly {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0;
}

.need-help-block {
    background: var(--accent);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.need-help-block h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.need-help-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.need-help-block .btn-primary {
    background: white;
    color: var(--accent);
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.need-help-block .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive Responsible Gaming */
@media (max-width: 768px) {
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .responsible-gaming-content {
        padding: 60px 0;
    }

    .content-block {
        margin-bottom: 40px;
    }

    .content-block h2 {
        font-size: 1.9rem;
    }

    .content-block h3 {
        font-size: 1.6rem;
    }

    .help-resources {
        grid-template-columns: 1fr;
    }

    .need-help-block {
        padding: 50px 0;
    }

    .need-help-block h2 {
        font-size: 2.2rem;
    }
}